home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / bb21c.zip / SEARCH.DOC < prev    next >
Text File  |  1993-01-23  |  4KB  |  95 lines

  1. The BBS now allows you to choose messages which satisfy multiple
  2. criteria, as well as messages which do NOT satisfy a selection.  This
  3. ability applies to the READ, KILL, LIST, EXPORT commands as well as the
  4. action file.
  5.  
  6. NEGATION
  7. --------
  8.  
  9. You have always been able to specify, for example, that you want to see
  10. all messages of a type -- for example, to list all bulletins, you issue
  11. the "LB" command.  Now you can also specify that you want to see all
  12. messages which are NOT of a type -- for example, to list all messages
  13. which are NOT bulletins, use "L^ B".
  14.  
  15. You can use the "negation" symbol (^) to invert almost any search.
  16.  
  17. MULTIPLE SEARCHES
  18. -------- --------
  19.  
  20. You can use the "and" symbol (&) to specify only those messages which
  21. satisfy multiple search criteria.  For example:
  22.  
  23. To list bulletins which are newer than October 1, 1990:
  24.  
  25.   LB & D > 901001
  26.  
  27. To list unread messages which are NOT addressed to someone @AA4RE:
  28.  
  29.   LN & ^ @ AA4RE
  30.  
  31. To list Private messages that are not to AA4RE or at AA4RE
  32.  
  33.   LP & ^ @ AA4RE & ^ > AA4RE
  34.  
  35.  
  36. Note that you can use negation as part of a multiple search.
  37.  
  38.  
  39.  
  40. TYPES OF SEARCHES
  41. ----- -- --------
  42.  
  43.      _      -- Messages of type ' '
  44.      A  x   -- Messages of type x.  If x is omitted, search for type "A"
  45.      B      -- Messages of type 'B'
  46.      C  x   -- User class (Used by action file).  Test is for this user class
  47.                or BELOW!
  48.      D  > d -- Messages newer than date d (See note)
  49.      D  < d -- Messages older than date d (See note)
  50.      E  u   -- Messages to a server.  Same as > but @ must be blank or
  51.                this BBS
  52.      F  n   -- Forwarded messages greater than n
  53.      G  u   -- Checks logged on user.  To be used in action file
  54.      H  n   -- Held messages greater than n
  55.      K  n   -- Killed messages greater than n
  56.      L  n   -- Last n messages
  57.      M  u   -- Messages of a specific user.  Default is current user
  58.      N  n   -- Messages just sitting here unread greater than n
  59.      O  n   -- Messages of with "old" attribute & number greater n
  60.      P      -- Messages of type 'P'
  61.      Q      -- Read messages to a specific user
  62.      S  s   -- Messages with string in subject
  63.      T      -- NTS messages
  64.      U  u   -- Unread messages to user u.  Current user is default
  65.      V  n   -- Messages in review status greater than n
  66.      Y  n   -- All read messages greater than n
  67.      <  u   -- Messages from a user u.
  68.      >  u   -- Messages to a user u.
  69.      @  b   -- Messages to a user at mailbox b
  70.      %  b   -- Messages from a user at mailbox b
  71.      $  s   -- Messages with string in the BID
  72.      +  n   -- Messages in forwarding progress with number >= n
  73.      ?  n   -- Messages with unknown forwarding with number >= n
  74.      -  n   -- Messages being forwarded right now with number >= n
  75.      .  s   -- Messages addressed to certain H addresses
  76.      #  > n -- Messages with number >= n
  77.      #  < n -- Messages with number >= n
  78.      0      -- Messages since your last "L" command
  79.      !S > n -- Messages with size >= n
  80.      !S < n -- Messages with size <= n
  81.  
  82. Note 1:  Date can be expressed as YYMMDDHHMM HHMM is optional.
  83. Alternatively, the date could be #5 which is 5 days before today.  So,
  84. the command "LB & D > #5" means list bulletins less than 5 days old.
  85.  
  86. In any search anything but a number is required, you can use a wildcard.
  87. See WILDCARD.DOC for details.  Example:
  88.  
  89.    > AA4*
  90.  
  91.       Will match to callsign that starts with AA4
  92.  
  93.  
  94.  
  95.